home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Win9x 32bit Disk Access.xpl < prev    next >
Text File  |  2001-09-12  |  2KB  |  52 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="7"
  3. "COUNT"="2"
  4. "UIPATH"="System\File System\Windows 9x/ME Options\Performance"
  5. "NAME"="32-bit Disk Access"
  6. "OSVERSION"="10101"
  7. "VERSION"="1.27"
  8. "LANGUAGE"="VBScript"
  9. "WARNING"="If you do not understand what this option does, please do not adjust it.  It contains features that could cause you some problems if not used correctly."
  10. "TEXT 1"="Activate 32bit Disk Access"
  11. "TEXT 2"="Deactivate 32bit Disk Access"
  12. "DESCRIPTION 1"="To turn on 32-bit disk access in Windows for maximum performance. To disable 32-bit access ONLY for troubleshooting purposes (NOT recommended), replace ON with OFF."
  13. "AUTHOR"="CptSiskoX (Xteq Systems)"
  14. "CONTACTURL"="http://members.fortunecity.com/computingx/"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="For X-Setup program information, go to http://www.xteq.com."
  17. "COMMENT 2"="Thanks to my friend AXCEL216 http://user.aol.com/axcel216/ for tip."
  18. "COMMENT 3"="Thanks to archipel@storm.ca for the bug notice."
  19.  
  20. sf="SYSTEM.INI"
  21. ss="386Enh"
  22. v1="32BitDiskAccess"
  23.  
  24.  
  25. Sub Plugin_Initialize 
  26.   i=IniReadValue(sf,ss,v1)
  27.   if UCase(i)="ON" or len(s)=0 then
  28.      SetUIElement 1,true
  29.   end if
  30. End Sub
  31.  
  32. Sub Plugin_CheckData(ElementIndex)
  33. End Sub
  34.  
  35. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  36.  i=GetUIElement(1)
  37.  if i=true then
  38.     Call IniWriteValue(sf,ss,v1,"ON")
  39.  else
  40.     Call IniWriteValue(sf,ss,v1,"OFF")
  41.  end if
  42.  
  43.  
  44.  Call Restart
  45. End Sub
  46.  
  47. Sub Plugin_Terminate 
  48. End Sub
  49.  
  50.  
  51.  
  52.